====== Clevo M450C ======

{{http://aviaweb.free.fr/ftp/images/Clevo%20M450C.jpg}}


==== Vidéo ====

La 3D marche tout de suite.

Exemple de xorg.conf qui marche:

<php>
Section "Files"
RgbPath "/usr/share/X11/rgb"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/lib/X11/fonts/misc/"
FontPath "/usr/lib/X11/fonts/TTF/"
FontPath "/usr/lib/X11/fonts/Speedo/"
FontPath "/usr/lib/X11/fonts/Type1/"
FontPath "/usr/lib/X11/fonts/CID/"
FontPath "/usr/lib/X11/fonts/75dpi/"
FontPath "/usr/lib/X11/fonts/100dpi/"
FontPath "/usr/share/dosemu/Xfonts/"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbLayout" "hu"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/mouse"
EndSection

Section "Module"
Load "GLcore"
Load "bitmap"
Load "dbe"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "record"
Load "speedo"
Load "type1"
Load "vbe"
Load "v4l"
EndSection

Section "Device"
Identifier "Intel82855GM[0]"
Driver "i810"
VideoRam 65536
option "Clone" "true"
Option "MonitorLayout" "CRT,LFP"
EndSection

Section "Monitor"
Identifier "LCD1024x768"
HorizSync 28-50
VertRefresh 43-75
Option "DPMS"
EndSection

Section "Screen"
Identifier "Screen[0]"
Device "Intel82855GM[0]"
Monitor "LCD1024x768"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Layout[0]"
Screen "Screen[0]"
EndSection

Section "DRI"
Mode 0666
EndSection
</php>


Exemple qui marche avec synaptics (touchpad)

Ne pas oubliez de faire avant:

  pacman-g2 -S synaptics

<php>
Section "Files"
RgbPath "/usr/share/X11/rgb"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/lib/X11/fonts/misc/"
FontPath "/usr/lib/X11/fonts/TTF/"
FontPath "/usr/lib/X11/fonts/Speedo/"
FontPath "/usr/lib/X11/fonts/Type1/"
FontPath "/usr/lib/X11/fonts/CID/"
FontPath "/usr/lib/X11/fonts/75dpi/"
FontPath "/usr/lib/X11/fonts/100dpi/"
FontPath "/usr/share/dosemu/Xfonts/"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbLayout" "hu"
EndSection

#Section "InputDevice"
#Identifier "Mouse0"
#Driver "mouse"
#Option "Protocol" "auto"
#Option "Device" "/dev/mouse"
#EndSection

Section "InputDevice"
Driver "synaptics"
Identifier "Mouse0"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "LeftEdge" "1700"
Option "RightEdge" "5300"
Option "TopEdge" "1700"
Option "BottomEdge" "4200"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "VertScrollDelta" "100"
Option "MinSpeed" "0.06"
Option "MaxSpeed" "0.12"
Option "AccelFactor" "0.0010"
Option "SHMConfig" "on"
EndSection

Section "Module"
Load "GLcore"
Load "bitmap"
Load "dbe"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "record"
Load "speedo"
Load "type1"
Load "vbe"
Load "v4l"
Load "synaptics"
EndSection

Section "Device"
Identifier "Intel82855GM[0]"
Driver "i810"
VideoRam 65536
option "Clone" "true"
Option "MonitorLayout" "CRT,LFP"
EndSection

Section "Monitor"
Identifier "LCD1024x768"
HorizSync 28-50
VertRefresh 43-75
Option "DPMS"
EndSection

Section "Screen"
Identifier "Screen[0]"
Device "Intel82855GM[0]"
Monitor "LCD1024x768"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
InputDevice "Mouse0" "CorePointer"
Identifier "Layout[0]"
Screen "Screen[0]"
EndSection

Section "DRI"
Mode 0666
EndSection
</php>

==== Réseau ====


La carte ethernet utilise le module **8139too** (donc ajoutez 8139too à /etc/sysconfig/modules)

La carte Wifi a besoin du firmware:

  pacman-g2 -S ipw2200-firmware

==== ACPI ====

Utiliser les modules **battery** et **ac**, la commande acpi vous infrmera correctement.


Vous pouvez aussi utiliser le module **button**.

Exemple de acpi-handler.sh:

<php>
$ cat /etc/acpi/acpi_handler.sh
#!/bin/sh
# Default acpi script that takes an entry for all actions

IFS=${IFS}/
set $@

case "$1" in
  button)
    case "$2" in
      power) echo shutdown > /sys/power/disk; echo disk > /sys/power/state
         ;;
      *) logger "ACPI action $2 is not defined"
         ;;
    esac
    ;;
  *)
    logger "ACPI group $1 / action $2 is not defined"
    ;;
esac
</php> 

==== Liens externes ====

http://www.clevo.com.tw/products/M450C.asp

==== Source du tutoriel ====


http://wiki.frugalware.org/Clevo_M450C